home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Diamond Collection / The Diamond Collection (Software Vault)(Digital Impact).ISO / cdr15 / scott002.zip / SCOTT002.TXT < prev    next >
Text File  |  1995-02-04  |  3KB  |  127 lines

  1. scott002.zip
  2.  
  3. URL:
  4. http://sprawl.sensemedia.net:8080/people/scott/scotlist.htm(l)
  5.  
  6. 2/07/95
  7.  
  8. Files:   scotlist.htm
  9.          scott.htm
  10.          scott002.txt
  11.          001.htm through 061.htm
  12.          scotxt02.txt  ASCII DOS text list of scott.htm without code
  13.  
  14. Scott002.zip is an interactive web browser home page
  15. of 3205 alphabetized web sites in 61 different categories.
  16.  
  17. Unzip scott002.zip into drive:\scott
  18.  
  19. scotlist.htm is the smaller categories homepage and much faster
  20. interface than scott.htm.
  21.  
  22. scott.htm is the full 330 K. file.
  23.  
  24. scott002.zip should work with most web browsers.
  25.  
  26. Scott's Internet Hot List Home Page at Ohio State's  Free Home Pages
  27. http://www-bprc.mps.ohio-state.edu/cgi-bin/hpp?scott.html
  28. ftp the entire file scott002.zip from this site.
  29.  
  30. Scott's hotlist is accesible from:
  31. Sprawl Sensemedia Free Internet Access
  32. http://sprawl.sensemedia.net:8080/people/scott/scotlist.htm(l)
  33.  
  34.  
  35. Connector, Germany
  36. http://www.connector.de/links.html
  37.  
  38. scott002.zip is available from:
  39. ftp://hobbes.nmsu.edu/os2/32bit/network/scott002.zip  or /os2/incoming
  40. ftp://ftp.cdrom.com/.1/os2/new or /.1/os2/incoming/scott002.zip
  41. ftp://sprawl.sensemedia.net/people/scott/scott002.zip
  42.  
  43. BBS's  203-622-4740
  44.         203-322-4135
  45.         203-329-2972
  46.  
  47. scott002.zip is very useful for navigating the web particularly
  48. for first time users.  Just open the files scotlist.htm from one's web
  49. browser and click onto the categories and sites one desires.
  50.  
  51. scotlist.htm is a much faster browsing page.
  52.  
  53. scotxt02.txt is an ASCII DOS text list of scott.htm
  54.  
  55. scott002.zip is posted as free ware and it may be used on other
  56. web home pages to provide other links to the web.  scott002.zip
  57. will not be upgraded.  This is the last version.  I recommend looking
  58. at the category Internet Lists for other lists also.
  59.  
  60. scott002.zip is the next version of scott001.zip
  61.  
  62. Any feedback would be appreciated.  Email comments to:
  63. Michael Scott
  64. email:  mikescot@ix.netcom.com
  65.  
  66. Enjoy surfing the net !
  67.  
  68.  
  69. UNIX note:
  70. scott002.zip is created with the OS/2 Enhanced Editor on a PC
  71. computer.  It's URL site at: http://sprawl.sensemedia.net:8080/people/scott/scotlist.htm
  72. is running on a UNIX machine.  However depending on the UNIX machine and its web
  73. browser, it may or may not work.
  74.  
  75. UNIX script from connector.de (it works there)
  76.  
  77. These two scripts worked fine on my Linux 1.0.8 station with perl 5 and
  78. an arbitrary shell, say BASH.
  79.  
  80. Main program :
  81.  
  82. --------------------------------------------------------------------------------
  83. #!/bin/bash
  84.  
  85. for f in *htm
  86. do
  87. echo $f
  88. transform.pl $f
  89. done
  90. --------------------------------------------------------------------------------
  91.  
  92. "transform.pl" perl conversion program, to be run for every .htm file
  93.  
  94. --------------------------------------------------------------------------------
  95. #!/usr/local/bin/perl
  96. # 1995 by Matthias Reinwarth
  97. # provided on an AS IS basis
  98. # no warranty etc.
  99.  
  100. ($file) = @ARGV;
  101.  
  102. open (IN,"$file");
  103.  
  104. $outfile = $file;
  105. $outfile =~ s/htm/HTML/g;
  106.  
  107. open (OUT,">$outfile");
  108.  
  109. while (<IN>)
  110. {
  111.         $_ =~ s/scott\.htm/SCOTT\.HTML/g;
  112.         $_ =~ s/scotlist\.htm/SCOTLIST\.HTML/g;
  113.         $_ =~ s/HTM/HTML/g;
  114.         print OUT;
  115. }
  116.  
  117. close (IN);
  118. close (OUT);
  119.                                
  120. --------------------------------------------------------------------------------
  121.  
  122.  
  123.  
  124.  
  125.  
  126.